home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 7 / Night Owl Shareware (NOPV7)(Night Owl Publisher Inc.)(1992).bin / 038a / bash1_12.arj / BASH1-12.TAR / bash-1.12 / builtins / suspend.def < prev    next >
Text File  |  1991-08-20  |  2KB  |  84 lines

  1. This file is suspend.def, from which is created suspend.c.
  2. It implements the builtin "suspend" in Bash.
  3.  
  4. Copyright (C) 1987, 1989, 1991 Free Software Foundation, Inc.
  5.  
  6. This file is part of GNU Bash, the Bourne Again SHell.
  7.  
  8. Bash is free software; you can redistribute it and/or modify it under
  9. the terms of the GNU General Public License as published by the Free
  10. Software Foundation; either version 1, or (at your option) any later
  11. version.
  12.  
  13. Bash is distributed in the hope that it will be useful, but WITHOUT ANY
  14. WARRANTY; without even the implied warranty of MERCHANTABILITY or
  15. FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  16. for more details.
  17.  
  18. You should have received a copy of the GNU General Public License along
  19. with Bash; see the file COPYING.  If not, write to the Free Software
  20. Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  
  22. $PRODUCES suspend.c
  23.  
  24. $BUILTIN suspend
  25. $DEPENDS_ON JOB_CONTROL
  26. $FUNCTION suspend_builtin
  27. $SHORT_DOC suspend [-f]
  28. Suspend the execution of this shell until it receives a SIGCONT
  29. signal.  The `-f' if specified says not to complain about this
  30. being a login shell if it is; just suspend anyway.
  31. $END
  32.  
  33. #include <signal.h>
  34. #include <sys/types.h>
  35. #include "../shell.h"
  36. #include "../jobs.h"
  37.  
  38. #if defined (JOB_CONTROL)
  39. extern int job_control;
  40.  
  41. static SigHandler *old_cont, *old_tstp;
  42.  
  43. /* Continue handler. */
  44. sighandler
  45. suspend_continue (sig)
  46.      int sig;
  47. {
  48.   signal (SIGCONT, old_cont);
  49.   signal (SIGTSTP, old_tstp);
  50. }
  51.  
  52. /* Suspending the shell.  If -f is the arg, then do the suspend
  53.    no matter what.  Otherwise, complain if a login shell. */
  54. int
  55. suspend_builtin (list)
  56.      WORD_LIST *list;
  57. {
  58.   if (!job_control)
  59.     {
  60.       builtin_error ("Cannot suspend a shell without job control");
  61.       return (EXECUTION_FAILURE);
  62.     }
  63.  
  64.   if (list)
  65.     if (strcmp (list->word->word, "-f") == 0)
  66.       goto do_suspend;
  67.  
  68.   no_args (list);
  69.  
  70.   if (login_shell)
  71.     {
  72.       builtin_error ("Can't suspend a login shell");
  73.       return (EXECUTION_FAILURE);
  74.     }
  75.  
  76. do_suspend:
  77.   old_cont = (SigHandler *)signal (SIGCONT, suspend_continue);
  78.   old_tstp = (SigHandler *)signal (SIGTSTP, SIG_DFL);
  79.   killpg (shell_pgrp, SIGTSTP);
  80.   return (EXECUTION_SUCCESS);
  81. }
  82.  
  83. #endif /* JOB_CONTROL */
  84.